WORadioButton represents itself as an on-off switch. Radio buttons are normally grouped, since the most important aspect of their behavior is that they allow the user to select no more than one of several choices. If the user selects one button, the previously selected button (if any) becomes deselected.
Since radio buttons normally appear as a group, WORadioButton is commonly found within a WORepetition. Alternatively, you can use the WORadioButtonList element.
true
(or YES
),
the radio button appears in the selected state. During request handling, checked reflects
the state the user left the radio button in: true
(or YES
)
if checked; false
(or NO
)
if not.true
(or YES
),
this element appears in the page but is not active. That is, selection does
not contain the user's selection when the page is submitted.in a WORadioButton declaration you must supply either checked or value, but not both: they are mutually exclusive. |